home *** CD-ROM | disk | FTP | other *** search
/ Vypalování CD / Vypalovani-CD-cd1.bin / CDRWin 3.9 DOS / MAKEISO.TXT < prev    next >
Text File  |  2002-01-27  |  5KB  |  139 lines

  1.  
  2.               MAKEISO.EXE - ISO9660 Image File Formatter
  3.  
  4.  
  5. >>> PROGRAM DESCRIPTION <<<
  6.  
  7.     MAKEISO.EXE will build an ISO9660 compatible image file from one
  8. or more directories on your harddrive. This image file can then be
  9. recorded onto a CD-R disc with either FILE2CD.EXE or DAO.EXE.
  10.  
  11. ***********************************************************************
  12.  
  13. >>> COMMAND LINE USAGE <<<
  14.  
  15. Usage: MAKEISO <pathname> <isofile> [/BATCH] [/JOLIET] [/NOCONFIRM]
  16.          [/RAW] [/RECURSE] [/VOLUME=label] [/ARCHIVE] [/HIDDEN] [/SYSTEM]
  17. pathname   - Directory pathname (must end with '\')
  18. isofile    - Output ISO9660 image filename
  19. /BATCH     - Disable all logging messages
  20. /JOLIET    - Enable long filename support (Joliet)
  21. /NOCONFIRM - Disable all confirmation prompts
  22. /RAW       - Generate raw data sectors
  23. /RECURSE   - Recurse all subdirectories
  24. /VOLUME    - Volume label (maximum 32 characters)
  25. /ARCHIVE   - Process only "archive" files
  26. /HIDDEN    - Process "hidden" files
  27. /SYSTEM    - Process "system" files
  28. e.g. MAKEISO C:\MYFILES\ TEST.ISO /RECURSE /VOLUME=MY_FILES
  29.  
  30. The pathname must specify a directory, so it must end with "\"
  31. (e.g. "C:\DIR1\DIR2\"). NOTE: This directory will be the top level
  32. directory in the ISO9660 image file.
  33.  
  34. /JOLIET - Enables long filename support for Windows 95/NT.
  35.  
  36. /RAW - Generates raw (2352 byte) data sectors. This would generally
  37. be used only to make an image file for disc-at-once applications on
  38. Philips compatible recorders.
  39.  
  40. /RECURSE - Causes MAKEISO to recurse all subdirectories. Otherwise,
  41. only files in the specified directory are processed.
  42.  
  43. /VOLUME - The first 11 characters of the volume label will be returned
  44. as the disc's volume label from all DOS/Windows utilities.
  45.  
  46. /ARCHIVE - Processes only files with the "archive" attribute set.
  47.  
  48. /HIDDEN - Processes all directories and files with the "hidden"
  49. attribute. These are ignored by default.
  50.  
  51. /SYSTEM - Processes all directories and files with the "system"
  52. attribute. These are ignored by default.
  53.  
  54. ***********************************************************************
  55.  
  56. >>> CURRENT RESTRICTIONS <<<
  57.  
  58. MAKEISO has the following restrictions...
  59.  
  60.   - MAKEISO can only process complete directories. You cannot select
  61.     specific files to be processed with wildcards.
  62.  
  63.   - Due to DOS memory limitations in the 16-bit version of this program,
  64.     the maximum number of files that can be processed is approximately
  65.     two thousand (may be less on some systems).
  66.  
  67.   - The making of multisession discs in not supported on any of the
  68.     JVC or Pinnacle recorders (except the Pinnacle RCD4x4).
  69.  
  70. ***********************************************************************
  71.  
  72. >>> HOW TO USE MAKEISO <<<
  73.  
  74.   The following examples will show you how to create an ISO9660
  75. compatible CD with either FILE2CD.EXE or DAO.EXE.
  76.  
  77. NOTE: For fastest processing speed, the output image file should be
  78. written to a different harddrive than the source files are on. This
  79. will eliminate excessive head movement between reading the input
  80. files and writing the output file.
  81.  
  82. EXAMPLE 1: Create an ISO9660 compatible CD with FILE2CD.EXE
  83.  
  84.   1) MAKEISO C:\TEST\ TEST.ISO /VOLUME=MY_FILES
  85.   
  86.   2) FILE2CD TEST.ISO /POSTGAP
  87.  
  88. ========================================================================
  89.  
  90. EXAMPLE 2: Create an ISO9660 compatible CD with DAO.EXE
  91. (for all recorders *except* Philips/HP).
  92.  
  93.   1) MAKEISO C:\TEST\ TEST.ISO /VOLUME=MY_FILES
  94.   
  95.   2) Write a CUE SHEET called TEST.CUE that contains the following...
  96.     
  97.     FILE TEST.ISO BINARY
  98.       TRACK 01 MODE1/2048
  99.       INDEX 01 00:00:00
  100.       POSTGAP 00:02:00
  101.  
  102.   3) DAO TEST.CUE
  103.  
  104. ========================================================================
  105.  
  106. EXAMPLE 3: Create an ISO9660 compatible CD using DAO.EXE
  107. (for Philips/HP compatible recorders that require RAW sectors in disc
  108. at once recording mode)
  109.  
  110.   1) MAKEISO C:\TEST\ TEST.RAW /RAW /VOLUME=MY_FILES
  111.   
  112.   2) Write a CUE SHEET called TEST.CUE that contains the following...
  113.     
  114.     FILE TEST.RAW BINARY
  115.       TRACK 01 MODE1/2352
  116.       INDEX 01 00:00:00
  117.       POSTGAP 00:02:00
  118.  
  119.   3) DAO TEST.CUE
  120.  
  121. **********************************************************************
  122.  
  123. Please send all suggestions, comments, and bug reports to...
  124.  
  125. Golden Hawk Technology
  126. 909 Columbia Circle
  127. Merrimack, NH 03054
  128.  
  129. Phone: 603-429-1008
  130. FAX  : 603-429-0073
  131.  
  132. URL  : http://www.goldenhawk.com
  133. EMAIL: support@goldenhawk.com
  134.  
  135. **********************************************************************
  136.  
  137. Updated on JANUARY 27, 2002
  138.  
  139.